home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 997 b | 50 lines | [TEXT/MPS ] |
- //# Copyright: © 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _ODDESC_
- #define _ODDESC_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODDesc;
-
- //==============================================================================
- // ODDesc
- //==============================================================================
-
- interface ODDesc : ODObject
- {
- void InitODDesc();
-
- void SetDescType(in ODDescType descType);
- void SetRawData(in ODByteArray data);
- ODDescType GetDescType();
- ODByteArray GetRawData();
-
- #ifdef __SOMIDL__
- implementation
- {
- majorversion = 1; minorversion = 0;
-
- functionprefix = ODDesc;
-
- override:
- somUninit;
- releaseorder:
- InitODDesc,
- SetDescType,
- SetRawData,
- GetDescType,
- GetRawData;
-
- };
- #endif
- };
-
- #endif //# _ODDESC_
-